home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Dev / Bgui / AutoDoc / sliderclass.doc < prev    next >
Encoding:
Text File  |  2000-05-09  |  2.2 KB  |  161 lines

  1. TABLE OF CONTENTS
  2.  
  3. sliderclass/--background--
  4. sliderclass/SLIDER_Level
  5. sliderclass/SLIDER_Max
  6. sliderclass/SLIDER_Min
  7. sliderclass/SLIDER_NoFrame
  8. sliderclass/SLIDER_ThinFrame
  9. sliderclass/SLIDER_XenFrame
  10.  
  11. sliderclass/--background--
  12.  
  13.     NAME
  14.  
  15.     Class:        sliderclass
  16.     Superclass:    propclass
  17.     Include File:    <libraries/bgui.h>
  18.  
  19.     FUNCTION
  20.  
  21.     To provide a gadget similar to the gadtools.library slider kind.
  22.     Objects of this class send out the following attribute pairs in their
  23.     notification events:
  24.  
  25.     GA_ID - Gadget object ID.
  26.     SLIDER_Level - Slider level.
  27.  
  28.     NOTE
  29.  
  30.     This class also supports the PGA_NewLook and PGA_Freedom attributes.
  31.     Please refer to the system "propgclass" documentation for more
  32.     informatiom on these attributes.
  33.  
  34.     Also all frameclass attributes are valid at create time and with
  35.     OM_SET or OM_UPDATE (ISU).
  36.  
  37. sliderclass/SLIDER_Level
  38.  
  39.     NAME
  40.  
  41.     SLIDER_Level -- ( LONG )
  42.  
  43.     FUNCTION
  44.  
  45.     Set or get the current slider level.
  46.  
  47.     DEFAULT
  48.  
  49.     0.
  50.  
  51.     APPLICABILITY
  52.  
  53.     (ISGNU).
  54.  
  55.     SEE ALSO
  56.  
  57.     SLIDER_Min, SLIDER_Max
  58.  
  59. sliderclass/SLIDER_Max
  60.  
  61.     NAME
  62.  
  63.     SLIDER_Max -- ( LONG )
  64.  
  65.     FUNCTION
  66.  
  67.     Set the maximum slider level. Please note that this attribute
  68.     has been made settable since V39 of the library.
  69.  
  70.     DEFAULT
  71.  
  72.     15.
  73.  
  74.     APPLICABILITY
  75.  
  76.     (ISU).
  77.  
  78.     SEE ALSO
  79.  
  80.     SLIDER_Min, SLIDER_Level
  81.  
  82. sliderclass/SLIDER_Min
  83.  
  84.     NAME
  85.  
  86.     SLIDER_Min -- ( LONG )
  87.  
  88.     NCTION
  89.  
  90.     Set the minimum slider level. Please note that this attribute
  91.     has been made settable since V39 of the library.
  92.  
  93.     DEFAULT
  94.  
  95.     0.
  96.  
  97.     APPLICABILITY
  98.  
  99.     (ISU).
  100.  
  101.     SEE ALSO
  102.  
  103.     SLIDER_Max, SLIDER_Level
  104.  
  105. sliderclass/SLIDER_NoFrame
  106.  
  107.     NAME
  108.  
  109.     SLIDER_NoFrame -- ( BOOL ) ** V40 **
  110.     
  111.     FUNCTION
  112.  
  113.     To create a slider object without a frame around it.
  114.  
  115.     DEFAULT
  116.  
  117.     FALSE.
  118.  
  119.     APPLICABILITY
  120.  
  121.     (ISU).
  122.  
  123. sliderclass/SLIDER_ThinFrame
  124.  
  125.     NAME
  126.  
  127.     SLIDER_ThinFrame -- ( BOOL )
  128.  
  129.     FUNCTION
  130.  
  131.     To make all slider object framing appear as thin frames. This will
  132.     help you to make an aspect-ratio dependant GUI.
  133.  
  134.     DEFAULT
  135.  
  136.     FALSE.
  137.  
  138.     APPLICABILITY
  139.  
  140.     (I).
  141.  
  142. sliderclass/SLIDER_XenFrame
  143.  
  144.     NAME
  145.  
  146.     SLIDER_XenFrame -- ( BOOL )
  147.  
  148.     FUNCTION
  149.  
  150.     To make all slider object framing appear as Xen style framing. This
  151.     tag is only useful when you use the default frame type.
  152.  
  153.     DEFAULT
  154.  
  155.     FALSE.
  156.  
  157.     APPLICABILITY
  158.  
  159.     (I).
  160.  
  161.